global class HcCreateContactEncounterActionInput {
@InvocableVariable(label='Encounter Duration' description='Encounter Duration' required=false)
global Integer encounterDuration;
@InvocableVariable(label='Estimated Participant Count' description='Estimated Participant Count' required=false)
global Integer estimatedParticipantCount;
@InvocableVariable(label='Location Id' description='Location Id' required=false)
global String locationId;
@InvocableVariable(label='Name' description='Name' required=false)
global String name;
@InvocableVariable(label='Start Date Time' description='Start Date Time' required=false)
global Datetime startDateTime;
@Deprecated
@InvocableVariable(label='Start Time' description='Start Time' required=false)
global Date startTime;
global HcCreateContactEncounterActionInput() {
}
}
|